home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 006a / mpp.zip / FUNCTION.DOC < prev    next >
Text File  |  1991-03-19  |  2KB  |  99 lines

  1. 47
  2. abs(x)
  3. The absolute value of x
  4. angle(x,y)
  5. The angle from the x-axis to the cord through (x,y)
  6. arccos(x)
  7. The inverse of the cosine function
  8. arcsin(x)
  9. The inverse of the sine function
  10. arctan(x)
  11. The inverse of the tangent function
  12. arcsec(x)
  13. The inverse of the secant function
  14. beta(x,a,b)
  15. The beta distribution Γ(a+b)/(Γ(a)Γ(b))x^(a-1)(1-x)^(b-1)
  16. cos(x)
  17. The cosine function
  18. cosh(x)
  19. The hyperbolic cosine function, (exp(x)+exp(-x))/2
  20. cot(x)
  21. The cotangent function, cos(x)/sin(x)
  22. coth(x)
  23. The hyperbolic cotangent function, cosh(x)/sinh(x)
  24. csc(x)
  25. The cosecant function, 1/sin(x)
  26. csch(x)
  27. The hyperbolic cosecant function, 1/sinh(x)
  28. exp(x)
  29. The exponential function, e^x
  30. fact(n)
  31. n factorial, 1<n<34
  32. fdist(x,a,b)
  33. The f-dist, Γ((a+b)/2)/(Γ(a/2)Γ(b/2))(a/b)^(a/2)x^((a/2)-1)/(1+(ax/b))^((a+b)/2)
  34. fn(x,k)
  35. The kth function, available in module 1 only
  36. gam(x,a,b)
  37. The gamma dist., x^(a-1)exp(-x/b)/((b^a)Γ(a))
  38. gamma(x)
  39. The gamma function, integral from 0 to ∞ of exp(-b)b^(x-1) db
  40. heav(x)
  41. Heaveside unit dtep function, heav(x)=1 if x>0, heav(x)=0 if x<0
  42. inf(x,y)
  43. The smaller of the two numbers x and y
  44. int(x)
  45. The greatest integer less than or equal to x
  46. intpower(x,n)
  47. x^n for integer n.  Faster than using ^
  48. invcosh(x)
  49. The inverse of the hyperbolic cosine, x>=1
  50. invcoth(x)
  51. The inverse of the hyperbolic cotangent
  52. invcsch(x)
  53. The inverse of the hyperbolic cosecant
  54. invsinh(x)
  55. The inverse of the hyperbolic sine
  56. invsech(x)
  57. The inverse of the hyperbolic secant, 0<x<=1
  58. invtanh(x)
  59. The inverse of the hyperbolic tangent, -1<x<1
  60. jn(x,n)
  61. Bessel's function of order n, n integer 1<n<10
  62. log(x)
  63. The common log function, base 10
  64. loga(x,a)
  65. The log base a
  66. ln(x)
  67. The natural log function, base e
  68. normal(x,m,s)
  69. The normal distribution with mean, m, and standard deviation, s
  70. sqrt(x)
  71. The square root function
  72. round(x)
  73. The integer nearest x
  74. rp(x,p,q)
  75. (x^p)^(1/q), works for x<0 unless p is odd and q is even
  76. sec(x)
  77. The secant function, 1/cos(x)
  78. sech(x)
  79. the hyperbolic secant function, 1/cosh(x)
  80. sin(x)
  81. The sine function
  82. sinh(x)
  83. The hyperbolic sine function, (exp(x)-exp(-x))/2
  84. sup(x,y)
  85. The larger of the two numbers, x and y
  86. tdist(x,n)
  87. Student t dist., Γ((n+1)/2)/(√(pi*n)Γ(n/2))1/((1+(x^2/n)^((n+1)/2))
  88. tan(x)
  89. The tangent function, sin(x)/cos(x)
  90. tanh(x)
  91. The hyperbolic tangent function, sinh(x)/cosh(x)
  92. trunc(x)
  93. Cut off at the decimal point =int(x) for x>=0, =int(x)+1 for x<0
  94. weib(x,a,b)
  95. Weibel dist., a*b*x^(b-1)exp(-a*x^b)
  96.  
  97.  
  98.  
  99.